home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / ICONT_FO / GENERAL.H < prev    next >
Text File  |  1990-03-02  |  306b  |  15 lines

  1. /*
  2.  * general.h - general definitions used in both translation and linking.
  3.  */
  4.  
  5. #define MaxFileName 256
  6.  
  7. struct fileparts {            /* struct of file name parts */
  8.    char *dir;                /* directory */
  9.    char *name;                /* name */
  10.    char *ext;                /* extension */
  11. #if MVS
  12.    char *member;
  13. #endif                    /* MVS */
  14.    };
  15.